-
Notifications
You must be signed in to change notification settings - Fork 125
Java Migration Guide: Removed APIs #1879
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
- Removed deprecated methods: | ||
- `com.sap.cds.ql.cqn.Modifier.search(String term)`, use `searchTerm(CqnSearchTermPredicate)` instead | ||
- `com.sap.cds.ql.cqn.Modifier.selectListValue(Value<?> value, String alias)`, use `selectListValue(SelectableValue value, String alias)` instead | ||
- `com.sap.cds.ql.SelectableValue.withoutAlias()`, use `as(String alias)` instead |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use
as(String alias)
instead
Do we need any replacement? Or can we just put the selectable value on the select list? Please double-check.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, we need the replacement. SelectableValue
does not extend CqnSelectListItem
. All values on the select list shall have an implicit or explicit alias now.
No description provided.